home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / SynthProgressWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  768 b   |  31 lines  |  [TEXT/KAHL]

  1. /* SynthProgressWindow.h */
  2.  
  3. #ifndef Included_SynthProgressWindow_h
  4. #define Included_SynthProgressWindow_h
  5.  
  6. /* SynthProgressWindow module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Memory */
  12. /* Screen */
  13. /* Numbers */
  14. /* DataMunging */
  15. /* EventLoop */
  16.  
  17. struct SynthWinRec;
  18. typedef struct SynthWinRec SynthWinRec;
  19.  
  20. /* create a new synth window record */
  21. SynthWinRec*                NewSynthWindow(long MinCallCount, MyBoolean ShowClippedSamples);
  22.  
  23. /* dispose of a synth window record */
  24. void                                DisposeSynthWindow(SynthWinRec* Window);
  25.  
  26. /* update the information in the synth window */
  27. void                                UpdateSynthWindow(SynthWinRec* Window, long SamplingRate,
  28.                                             long TotalSamples, long TotalClippedSamples, MyBoolean ForceRedraw);
  29.  
  30. #endif
  31.